@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
        
:root {
    /* Dark Theme Colors */
    --dark-primary: #5865F2;
    --dark-primary-dark: #4752C4;
    --dark-secondary: #2C2F33;
    --dark-bg: #1e2124;
    --dark-darker-bg: #121315;
    --dark-text: #ffffff;
    --dark-text-secondary: #b9bbbe;
    --dark-card-bg: rgba(32, 34, 37, 0.7);
    --dark-card-hover: rgba(47, 49, 54, 0.6);
    --dark-gradient-blue: linear-gradient(90deg, #5865F2, #00BFFF);
    
    /* Light Theme Colors */
    --light-primary: #5865F2;
    --light-primary-dark: #4752C4;
    --light-secondary: #e3e5e8;
    --light-bg: #f2f3f5;
    --light-darker-bg: #ffffff;
    --light-text: #2e3338;
    --light-text-secondary: #4f5660;
    --light-card-bg: rgba(230, 232, 235, 0.9);
    --light-card-hover: rgba(220, 222, 225, 1);
    --light-card-border: rgba(200, 200, 200, 0.5);
    --light-gradient-blue: linear-gradient(90deg, #5865F2, #00BFFF);
    
    /* Common Colors */
    --success: #57F287;
    --warning: #FEE75C;
    --danger: #ED4245;
    --gold: #FFD700;
    
    /* Current Theme (defaults to dark) */
    --primary: var(--dark-primary);
    --primary-dark: var(--dark-primary-dark);
    --secondary: var(--dark-secondary);
    --bg: var(--dark-bg);
    --darker-bg: var(--dark-darker-bg);
    --text: var(--dark-text);
    --text-secondary: var(--dark-text-secondary);
    --card-bg: var(--dark-card-bg);
    --card-hover: var(--dark-card-hover);
    --card-border: transparent;
    --gradient-blue: var(--dark-gradient-blue);
}

.light-theme {
    --primary: var(--light-primary);
    --primary-dark: var(--light-primary-dark);
    --secondary: var(--light-secondary);
    --bg: var(--light-bg);
    --darker-bg: var(--light-darker-bg);
    --text: var(--light-text);
    --text-secondary: var(--light-text-secondary);
    --card-bg: var(--light-card-bg);
    --card-hover: var(--light-card-hover);
    --card-border: var(--light-card-border);
    --gradient-blue: var(--light-gradient-blue);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--darker-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.theme-toggle:hover {
    background: rgba(128, 128, 128, 0.2);
}

.theme-toggle i {
    color: var(--text);
    font-size: 18px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--darker-bg);
    margin-top: 70px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(88, 101, 242, 0.2), transparent 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(88, 101, 242, 0.5);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    position: relative;
    min-height: calc(100vh - 40vh - 200px);
}

.main-content::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    top: 0;
    left: -150px;
    z-index: 0;
}

.main-content::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    bottom: 0;
    right: -150px;
    z-index: 0;
}

/* Search Bar */
.search-container {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.2);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 20px;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.category-btn {
    padding: 12px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-btn:hover {
    background: var(--card-hover);
    color: var(--text);
    transform: translateY(-3px);
}

.category-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.category-btn i {
    font-size: 18px;
}

/* FAQ Accordion */
.faq-section {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.faq-section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.faq-section-title i {
    color: var(--primary);
    font-size: 24px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--card-hover);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-highlight {
    background: rgba(88, 101, 242, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid var(--primary);
}

/* Contact Section */
.contact-section {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid var(--card-border);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.contact-btn.discord {
    background: #5865F2;
}

.contact-btn.discord:hover {
    background: #4752C4;
}

.contact-btn.email {
    background: #EA4335;
}

.contact-btn.email:hover {
    background: #D33426;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.05;
    bottom: -100px;
    left: -100px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--darker-bg);
    z-index: 1001;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.overlay.active {
    display: block;
}

/* Particles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .faq-categories {
        flex-direction: column;
    }
    
    .category-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 15px;
    }
    
    .contact-section {
        padding: 20px;
    }
}

/* Discord-like scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}